return, Control structures


Prototype:

return expr

Description:

Ends execution of the current function, and returns its argument as the value of the function call.
return should be also used in operator overloading functions.
The expression can be any Concept expression or variable.